home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1991 …esperately Seeking Seven / Desperately Seeking Seven.2mg / Dev.CD.8 / Essentials / Tools / File.Type.Notes / FTN.C0.0003 < prev    next >
Encoding:
Text File  |  1988-11-20  |  1.3 KB  |  33 lines  |  [04] ASCII Text (0x0000)

  1. Apple II
  2. File Type Notes
  3. _____________________________________________________________________________
  4.                                                   Developer Technical Support
  5.  
  6.  
  7. File Type:         $C0 (192)
  8. Auxiliary Type:    $0003
  9.  
  10. Full Name:     Packed Apple IIGS QuickDraw II Picture File
  11. Short Name:    Packed QuickDraw II PICT File
  12.  
  13. Written by:    Matt Deatherage                                  November 1988
  14.  
  15. Files of this type and auxiliary type contain a packed QuickDraw II picture.
  16. _____________________________________________________________________________
  17.  
  18. Files of type $C0 and auxiliary type $0003 contain a packed QuickDraw II 
  19. picture (a.k.a. PICT, after its counterpart on the Macintosh), and this file 
  20. format is the same as file type $C1 and auxiliary type $0001, except files in 
  21. this format are packed.  If you encounter a file of this type, you should be 
  22. able to get its length, allocate a handle of the same size, read the file into 
  23. the handle, use UnPackBytes to restore the picture to its original format, and 
  24. call DrawPicture to display the picture.  Refer to Apple IIGS Technical Note 
  25. #46, DrawPicture Data Format for more information on the internal format of 
  26. QuickDraw II pictures.
  27.  
  28.  
  29. Further Reference
  30. o    Apple IIGS Toolbox Reference Manual, Volume 2
  31. o    Apple IIGS Technical Note #46, DrawPicture Data Format
  32.  
  33.